                                     /* Let's Start Coding! */
                                  /* GibSircleIN Technologies */
                                      /* e-Contact Crad */


/* Page Setup */

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  font-family: "DM Sans", sans-serif;
}

/* Background Styling */

body {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgb(0,0,0);
  background: linear-gradient(179.4deg, rgb(12, 20, 69) -16.9%, rgb(71, 30, 84) 119.9%);
  background-repeat: no-repeat;
  background-size: 100%;
  overflow: hidden;
}

/* Preloader Page Styling */


.Intro-Page {

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  background: linear-gradient(179.4deg, rgb(12, 20, 69) -16.9%, rgb(71, 30, 84) 119.9%);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  z-index: 9999;
  
  flex-direction: column;
  align-items: center;
  animation: fadeout 5s ease-in-out forwards;
}


@keyframes fadein {
  0% {
      opacity: 1;
  }
  100% {
      opacity: 0;
      display: none;
  }
}

/* Drawing effect for the SVG */

#Intro_Logo {

  height: auto;
  width: auto;

  fill-opacity: 100;
  stroke-width: 8px;
  stroke-dasharray: 4500;

  /*animation: draw 5s ease;*/

  animation: zoomInOut 5s ease;

  
}

/* Zooming Effect */

@keyframes zoomInOut {

  from {
    transform: scale(.8);
  }
  to {
    transform: scale(1);
  }
}

/* Drawing Effect */
/*
@keyframes draw {
  0% {
    stroke-dashoffset: 9500;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
*/

/* Adding Fonts */



/* Text Styles */

.Intro-Page-text {

  /* Styles for the text below the SVG */

  font-size: 30px;
  font-family: 'Playball', cursive;
  margin-top: 10px;
  color: rgb(255, 255, 255); /* Set the foreground color to white */
  opacity: 0;
  letter-spacing: 0.2rem;
  transform: translateY(100%); /* Initial position below the SVG */
  animation: popRising 4s forwards;
}
  
@keyframes popRising {
  to {
      opacity: 1;
      transform: translateY(0); /* Move the text up */
  }
}

/* Main content animation */


.Main-Page {
  opacity: 0;
  animation: fadeIn 5s ease-in-out forwards;
}

@keyframes fadeIn {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}


/* Display Box Styles */

.Gib_Box {
  padding: 2rem;
  width: 32rem;
  height: 50rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0 1rem 2rem rgba(31, 38, 135, 0.37);
          box-shadow: 0 1rem 2rem rgba(31, 38, 135, 0.37);
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid rgba(141, 14, 166, 0.18);
  -webkit-backdrop-filter: blur(1.8rem);
          backdrop-filter: blur(1.8rem);
  color: #ffffff;
  text-align: center;
}

@keyframes glowing {
  0% {
    box-shadow: 0 1rem 2rem rgba(31, 38, 135, 0.37);
  }
  50% {
    box-shadow: 0 1rem 2rem rgba(255, 255, 255, 0.37);
  }
  100% {
    box-shadow: 0 1rem 2rem rgba(31, 38, 135, 0.37);
  }
}

.Gib_Box {
  animation: glowing 2s infinite;
}



/* Background Animation */

/*

.blob {
  position: absolute;
  top: 30%;
  width: 40rem;
  height: 40rem;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(47, 184, 255, 0.42)), to(#5c9df1));
  background: rgba( 255, 255, 255, 0.1 );
  box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
  border-radius: 2px;
  border: 1px solid rgba( 255, 255, 255, 0.18 );
  mix-blend-mode: overlay;
  -webkit-animation: move 20s linear infinite alternate;
          animation: move 18s linear infinite alternate;
}



@-webkit-keyframes move {
  0% {
    -webkit-transform: translate(-400px, -100px) rotate(-90deg);
            transform: translate(-400px, -100px) rotate(-90deg);
    border-radius: 25% 75% 25% 75% / 25% 75% 25% 75%;
  }
  100% {
    -webkit-transform: translate(400px, 100px) rotate(-10deg);
            transform: translate(400px, 100px) rotate(-10deg);
    border-radius:25% 75% 25% 75% / 25% 75% 25% 75%;
  }
}

@keyframes move {
  0% {
    -webkit-transform: translate(-400px, -100px) rotate(-90deg);
            transform: translate(-400px, -100px) rotate(-90deg);
    border-radius: 25% 75% 25% 75% / 25% 75% 25% 75%;
  }
  100% {
    -webkit-transform: translate(400px, 100px) rotate(-10deg);
            transform: translate(400px, 100px) rotate(-10deg);
    border-radius: 25% 75% 25% 75% / 25% 75% 25% 75%;
  }
}

*/

/* User Photo Shape*/

.Gib_Box .imgbox {
  position: relative;
  width: 15rem;
  height: 15rem;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.5rem;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
}

/* User Photo */

.Gib_Box .imgbox img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Nme & Details */

.Gib_Box .name {
  margin: 1rem;
}

.Gib_Box .name h1 {
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.2rem;
}

.Gib_Box .name p {
  font-size: 1.4rem;
  opacity: 0.5;
}

.Gib_Box span {
  text-transform: capitalize;
  font-size: 1.9rem;
  letter-spacing: 0.2rem;
}

/* Button Styling */

.Gib_Box .button-group button {
  position: relative;
  margin: 1.5rem 0.7rem;
  padding: .7rem 1.7rem;
  background-color: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 01rem;
  font-size: 5 rem;
}

/* Whatsapp Button*/

.Gib_Box .button-group button:nth-of-type(1) {
  background-color: rgb(15, 128, 0); color: white;
}

/* Call Button*/

.Gib_Box .button-group button:nth-of-type(2) {
  background-color: rgb(251, 239, 4); color: rgb(7, 0, 0);
}

/* Dwnload Button*/

.Gib_Box .button-group button:nth-of-type(3) {
  background-color: rgb(101, 0, 233); color: rgb(255, 255, 255);
  animation: wiggle 2s linear infinite;
}

/* Dwnload Button Animation*/

@keyframes wiggle {
  0%, 7% {
    transform: rotateZ(0);
  }
  15% {
    transform: rotateZ(-15deg);
  }
  20% {
    transform: rotateZ(10deg);
  }
  25% {
    transform: rotateZ(-10deg);
  }
  30% {
    transform: rotateZ(6deg);
  }
  35% {
    transform: rotateZ(-4deg);
  }
  40%, 100% {
    transform: rotateZ(0);
  }
}

/* Social Media Button Styling*/

/*


.Gib_Box .social-links {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.Gib_Box .social-links button {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: none;
}

.Gib_Box .social-links button i {
  font-size: 1.8rem;
}

.Gib_Box .social-links button:nth-of-type(1) {
  background-color: #1778f2;
}

.Gib_Box .social-links button:nth-of-type(2) {
  background-color: #1da1f2;
}

.Gib_Box .social-links button:nth-of-type(3) {
  background-color: #c8232c;
}

.Gib_Box .social-links button:nth-of-type(4) {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#feda75), color-stop(#fa7e1e), color-stop(#d62976), color-stop(#962fbf), to(#4f5bd5));
  background-image: linear-gradient(#feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

*/ 

/* Bottom Logo */ 

.Gib_Box .GibSircleIN_logo img{
  width: 75%;
  height: auto; 
}




